home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / scheme / pcscheme / geneva / sources.exe / SOURCES / STEP / AUTOSTEP.S next >
Encoding:
Text File  |  1993-09-23  |  852 b   |  33 lines

  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;;;
  3. ;;;     MODULE: AUTOSTEP
  4. ;;;
  5. ;;;     Purpose:        This Module defines autoload definitions
  6. ;;;            for the step package.
  7. ;;;                     
  8. ;;;     Installation:    Load "autostep.*" in your "scheme.ini" or
  9. ;;;            copy it to your "scheme.ini".
  10. ;;;
  11. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  12.  
  13. (eval
  14.   '(autoload-from-file
  15.      (%system-file-name "stepwrap.fsl")
  16.      '(step-environment)
  17.      user-global-environment))
  18.  
  19. (eval
  20.   '(autoload-from-file
  21.      (%system-file-name "stepaux.fsl")
  22.      '( step-leap-mode
  23.         step-call-depth
  24.         step-stop-depth
  25.         increment-call-depth
  26.         decrement-call-depth
  27.         stop-step
  28.         remove-step)
  29.      user-global-environment))
  30.  
  31.  
  32.         
  33.